home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
Other Langs
/
Tickle-4.0 (tcl)
/
src
/
stuffit.h
< prev
next >
Wrap
Text File
|
1993-11-18
|
973b
|
42 lines
/*
** This source code was written by Tim Endres
** Email: time@ice.com.
** USMail: 8840 Main Street, Whitmore Lake, MI 48189
**
** Some portions of this application utilize sources
** that are copyrighted by ICE Engineering, Inc., and
** ICE Engineering retains all rights to those sources.
**
** Neither ICE Engineering, Inc., nor Tim Endres,
** warrants this source code for any reason, and neither
** party assumes any responsbility for the use of these
** sources, libraries, or applications. The user of these
** sources and binaries assumes all responsbilities for
** any resulting consequences.
*/
#define sNone 0
#define sFaster 1
#define sFast 2
#define sBetter 3
#define sOptimal 4
#define sBestGuess 5
typedef struct {
short vRefNum;
long dirID;
char name[32];
char method;
char deleteFlag;
} sFileSpec;
typedef struct {
short count;
sFileSpec specs[1];
} sFileList;
typedef struct {
short maxcount;
Handle fileList;
} mStuffSpec;